function setOptions(chosen) {
var selbox = document.theForm.Media;
 
selbox.options.length = 0;
if (chosen == "[Please Choose]") {
  selbox.options[selbox.options.length] = new Option('Please select one of the options above first','[Please Choose]');
 
}
if (chosen == "1") {
  selbox.options[selbox.options.length] = new Option('20# Bond','Large Format Black and White - 20# Bond');
  selbox.options[selbox.options.length] = new Option('Presentation Bond','Large Format Black and White - Presentation Bond');
  selbox.options[selbox.options.length] = new Option('Vellum','Large Format Black and White - vellum');
  selbox.options[selbox.options.length] = new Option('4mil Double Matte Mylar','Large Format Black and White - 4mil Dbl Matte Mylar');
  selbox.options[selbox.options.length] = new Option('Colored Bond - Blue','Large Format Black and White - Blue Bond');
  selbox.options[selbox.options.length] = new Option('Colored Bond - Yellow','Large Format Black and White - Yellow Bond');
  selbox.options[selbox.options.length] = new Option('Colored Bond - Pink','Large Format Black and White - Pink Bond');
  selbox.options[selbox.options.length] = new Option('Colored Bond - Green','Large Format Black and White - Green Bond');
  selbox.options[selbox.options.length] = new Option('Other','Large Format Black and White - Other');
}

if (chosen == "2") {
  selbox.options[selbox.options.length] = new Option('Plain 20#','Color Large Format - 20# Bond');
  selbox.options[selbox.options.length] = new Option('35# Presentation Bond','Color Large Format - 35# Bond');
  selbox.options[selbox.options.length] = new Option('46# Presentation Bond','Color Large Format - 46# Bond');
  selbox.options[selbox.options.length] = new Option('Matte Coated Paper','Color Large Format - Matte Coated');
  selbox.options[selbox.options.length] = new Option('Satin Coated Paper','Color Large Format - Satin Coated Paper');
  selbox.options[selbox.options.length] = new Option('Glossy Coated Paper','Color Large Format - Glossy Coated Paper');
  selbox.options[selbox.options.length] = new Option('Other','Color Large Format - Other');
}
if (chosen == "3") {
  selbox.options[selbox.options.length] = new Option('20# Paper','Small Format Black and White - 20# Paper');
  selbox.options[selbox.options.length] = new Option('80# Cardstock','Small Format Black and White - 80# Cardstock');
  selbox.options[selbox.options.length] = new Option('Other','Small Format Black and White - Other');
}
if (chosen == "4") {
  selbox.options[selbox.options.length] = new Option('32# Paper','Small Format Color - 32# Paper');
  selbox.options[selbox.options.length] = new Option('80# Cardstock','Small Format Color - 80# Cardstock');
  selbox.options[selbox.options.length] = new Option('Other','Small Format Color - Other');
}

}