function nature_of_business (f)
{
  f.options.length = 13;
  
  f.options[0].value = "";
  f.options[0].text = "Select Nature of Business";
  f.options[0].defaultSelected;

  f.options[1].value = "1";
  f.options[1].text = "eCommerce";

  f.options[2].value = "14";
  f.options[2].text = "Replica";

  f.options[3].value = "2";
  f.options[3].text = "Pharmacy";

  f.options[4].value = "3";
  f.options[4].text = "Gaming";

  f.options[5].value = "13";
  f.options[5].text = "Gambling";

  f.options[6].value = "12";
  f.options[6].text = "Dating";

  f.options[7].value = "4";
  f.options[7].text = "Adult";

  f.options[8].value = "16";
  f.options[8].text = "Travel";

  f.options[9].value = "6";
  f.options[9].text = "MOTO";

  f.options[10].value = "11";
  f.options[10].text = "Multi-Level Marketing";

  f.options[11].value = "15";
  f.options[11].text = "Downloadable Software";

  f.options[12].value = "9";
  f.options[12].text = "Other";

}

