function setOptions(chosen) {
var selbox = document.theForm.Media;
var selbox2 = document.theForm.Finishing;

selbox.options.length = 0;
selbox2.options.length = 0;
if (chosen == "[Please Choose]") {
  selbox.options[selbox.options.length] = new Option('Please select one of the options above first','[Please Choose]');
  selbox2.options[selbox2.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');
  selbox2.options[selbox2.options.length] = new Option('Loose','Loose');
  selbox2.options[selbox2.options.length] = new Option('Staple Only','Staple Only');
  selbox2.options[selbox2.options.length] = new Option('Edge bind','Edge Bind');
}

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('Alternative Matte Paper 8mil Uncoated','Color Large Format - 8mil AMP');
  selbox.options[selbox.options.length] = new Option('Other - Please note in instruction box','Color Large Format - Other');
  selbox2.options[selbox2.options.length] = new Option('Loose','Loose');
  selbox2.options[selbox2.options.length] = new Option('Staple Only','Staple Only');
  selbox2.options[selbox2.options.length] = new Option('Edge bind','Edge Bind');

}
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');
  selbox2.options[selbox2.options.length] = new Option('Loose','Loose');
  selbox2.options[selbox2.options.length] = new Option('Staple Only','Staple Only');
  selbox2.options[selbox2.options.length] = new Option('Edge bind','Edge Bind');
  selbox2.options[selbox2.options.length] = new Option('Comb bind','Comb Bind - Plastic Comb');
  selbox2.options[selbox2.options.length] = new Option('Coil bind','Coil Bind - Plastic Coil');
}
if (chosen == "4") {
  selbox.options[selbox.options.length] = new Option('28# Paper','Small Format Color - 28# 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');
  selbox2.options[selbox2.options.length] = new Option('Loose','Loose');
  selbox2.options[selbox2.options.length] = new Option('Staple Only','Staple Only');
  selbox2.options[selbox2.options.length] = new Option('Edge bind','Edge Bind');
  selbox2.options[selbox2.options.length] = new Option('Comb bind','Comb Bind - Plastic Comb');
  selbox2.options[selbox2.options.length] = new Option('Coil bind','Coil Bind - Plastic Coil');

}

}