//CC Code if(document.getElementById("CCode").value==''){ document.getElementById("CCode").value=''; } //Function To Preselect "How Did You Hear" Pick List function SelectIT(code){ var objList = document.getElementById("HearAboutUs") for(var count = objList.options.length - 1; count >= 0; count--){ if(objList.options[count].text==code){ objList.selectedIndex=count; } } } //Choose Which "How Did You Hear" Pick List To Select var code = ''; if(code=='CM'){ SelectIT('Carroll Magazine'); } if(code=='ES'){ SelectIT('E-mail Special'); } if(code=='QH'){ SelectIT('High-end Neighborhood Mailer'); } if(code=='HF'){ SelectIT('HoCoMo Freddies'); } if(code=='MN'){ SelectIT('Monocacy Valley Trading Post'); } if(code=='MA'){ SelectIT('Mt. Airy Messenger'); } if(code=='BR'){ SelectIT('Radio - 100.7 The Bay'); } if(code=='GR'){ SelectIT('Radio - Carroll Gardens Show'); } if(code=='RT'){ SelectIT('Rt.108'); } if(code=='QS'){ SelectIT('Standard Neighborhood Mailer'); } if(code=='GN'){ SelectIT('Sun Gazette Newspapers'); } if(code=='MN'){ SelectIT('Merchandiser Newspapers'); } if(code=='DM'){ SelectIT('Direct Mail Postcards'); }