function setModelType(f,option_no) {
  var i=0;
  
  // clear selection options	 
  while (i < f.category.length) {
    f.category.options[i] = null;
    i++;
  }

    f.category.options[0] = new Option("Choose Bias Tee Type:","bias_tees_sm.html");

  if (option_no == "coax") {
    f.category.options[1] = new Option("Wideband","bias_tees_coax.html");
    f.category.options[2] = new Option("Bias Tees/Diplexers","bias_tees_dpx.html");
  }
  else if (option_no == "pi") {
    f.category.options[1] = new Option("Wideband","bias_tees_pic.html");
  }
  else if (option_no == "sm") {
    f.category.options[1] = new Option("Wideband","bias_tees_sm.html");
  }

}