function create() {

  var Primary = document.medical.procedure.selectedIndex;

  if ((Primary == null) || (Primary == 0)) return;

  if (Primary == 1) {

  var newoption = new Array;
  newoption[0] = new Option("General information","http://www.beautyholiday.co.uk");
  newoption[1] = new Option("Breast reduction","http://www.beautyholiday.co.uk/breast-reduction");
  newoption[2] = new Option("Eyelid correction","http://www.beautyholiday.co.uk/eyelid-correction");
  newoption[3] = new Option("Tummy tuck","http://www.beautyholiday.co.uk/tummy-tuck-abdominoplasty");
  newoption[4] = new Option("Face and neck lift","http://www.beautyholiday.co.uk/face-and-neck-lift");
  newoption[5] = new Option("Liposution","http://www.beautyholiday.co.uk/liposution");
  newoption[6] = new Option("Ear correction","http://www.beautyholiday.co.uk/ear-correction");
  newoption[7] = new Option("Nose reconstruction","http://www.beautyholiday.co.uk/nose-reconstruction");
  newoption[8] = new Option("Breast augmentation","http://www.beautyholiday.co.uk/breast-augmentation");
  newoption[9] = new Option("Hair implants","http://www.beautyholiday.co.uk/hair-implants");
  newoption[10] = new Option("Male breast reduction","http://www.beautyholiday.co.uk/male-breast-reduction");
  newoption[11] = new Option("Arm lift","http://www.beautyholiday.co.uk/arm-lift");
  }

  if (Primary == 2) {

  var newoption = new Array;
  newoption[0] = new Option("General information","http://dentalpoland.com");
  newoption[1] = new Option("Dental braces","http://dentalpoland.com/treatments/dental-braces");
  newoption[2] = new Option("Dental crowns","http://dentalpoland.com/treatments/dental-crowns");
  newoption[3] = new Option("Dental implants","http://dentalpoland.com/treatments/dental-implants");
  newoption[4] = new Option("Dental bridges","http://dentalpoland.com/treatments/dental-bridges");
  newoption[5] = new Option("Dentures","http://dentalpoland.com/treatments/dentures");
  newoption[6] = new Option("Veneers","http://dentalpoland.com/treatments/porcelain-veneers");
  newoption[7] = new Option("Teeth whitening","http://dentalpoland.com/treatments/teeth-whitening");
  newoption[8] = new Option("Root canal treatment","http://dentalpoland.com/treatments/root-canal-treatment-therapy");
  newoption[9] = new Option("Air polishing system","http://dentalpoland.com/treatments/professional-teeth-hygiene-aps");
  newoption[10] = new Option("Scaling","http://dentalpoland.com/treatments/professional-teeth-hygiene-scaling");
  newoption[11] = new Option("GTR","http://dentalpoland.com/treatments/gtr-guided-tissue-regeneration");
  }

  for (i=document.medical.treatment.options.length; i>0; i--) { 
  document.medical.treatment.options[i] = null;
  }

  for(i=0; i<newoption.length; i++) {
  document.medical.treatment.options[i] = newoption[i];
  }

  document.medical.treatment.options[0].selected = true;

}
