	<!--
// original code by Bill Trefzger 12/12/96
function go1(){
if (document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value != "none") {
location = document.selecter1.select1.options[document.selecter1.select1.selectedIndex].value
		}
	}
//-->

<!--
document.write('<form name="selecter1"><select name="select1" size=1 onchange="go1()">');
document.write('<option value=none>Pest Types');
document.write('<option value=none>--------------------');
document.write('<option value="infoCenter.cfm?step=2">Termites');
document.write('<option value="infoCenter.cfm?step=3">Ants');
document.write('<option value="infoCenter.cfm?step=4">Cockroaches');
document.write('<option value="infoCenter.cfm?step=5">Flies');
document.write('<option value="infoCenter.cfm?step=6">Rodents');
document.write('<option value="infoCenter.cfm?step=7">Other Pests');
document.write('</select>');
document.write('</form>');
// end hiding contents -->

