iHanhauser emailed me about the problem and I gave him some working js. Maybe not the purdiest solution but I'm not a big js guy

Works in Safari and Internet Explorer:
[php]
<script language="JavaScript" type="text/JavaScript">
<!--
function MM_jumpMenu(targ,selObj,restore){ //v3.0
if(selObj.options[selObj.selectedIndex].value.indexOf("store") != -1) //equals -1 if store not found
window.open(selObj.options[selObj.selectedIndex].value);
//if (restore) selObj.selectedIndex=0;
}
//-->
</script>
</head>
<body>
<form name="form1" method="post" action="">
<select name="BGR" onChange="MM_jumpMenu('newWindow',this,0)">
<option selected>SELECT STORE</option>
<option> </option>
<option value="stores/0008.html">Mile Square Bar & Grill </option>
<option value="stores/00010.html">Sparows Wine & Liquors </option>
<option value="stores/00011.html">The Liberty Bar</option>
<option>- - - - - - - - - - - - - - -</option>
<option value="http://www.brinleygoldrum.com/ny/find.ny.town.html">NEW
YORK</option>
<option value="http://www.brinleygoldrum.com/pa/find.pa.town.html">PENNSYLVANIA</option>
</select>
</form>
</body>
[/php]
On a side note, why does HTML still render in the code tag, but not the php tag?