function fillCategory(){ // this function is used to fill the category list on load addOption(document.drop_list.location, "2", "Valley Forge Beef & Ale (Audubon) 9:00pm", ""); addOption(document.drop_list.location, "3", "Fingers Wings and Other Things (Conshohocken) 9:00pm", ""); } function SelectSubCat(){ // ON selection of category this function will work removeAllOptions(document.drop_list.SubCat); addOption(document.drop_list.SubCat, "showdate", "Select Date", ""); if(document.drop_list.location.value == '2'){ addOption(document.drop_list.SubCat,"2008-12-06", "December 6"); addOption(document.drop_list.SubCat,"2008-12-13", "December 13"); addOption(document.drop_list.SubCat,"2008-12-20", "December 20"); addOption(document.drop_list.SubCat,"2008-12-27", "December 27"); } if(document.drop_list.location.value == '3'){ addOption(document.drop_list.SubCat,"2008-12-05", "December 5"); addOption(document.drop_list.SubCat,"2008-12-19", "December 19"); } } ////////////////// function removeAllOptions(selectbox) { var i; for(i=selectbox.options.length-1;i>=0;i--) { //selectbox.options.remove(i); selectbox.remove(i); } } function addOption(selectbox, value, text ) { var optn = document.createElement("OPTION"); optn.text = text; optn.value = value; selectbox.options.add(optn); }