<script type="text/javascript">
function goTo() {
var sE = null, url;
if(document.getElementById) {
sE = document.getElementById('');
} else if(document.all) {
sE = document.all[''];
}
if(sE && (url = sE.options[sE.selectedIndex].value)) {
location.href = url;
}
}
</script>
<form>
<select id="" size="1">
<option value="">Menu</option>
</select>
<input type="button" value="Go!" onclick="goTo();">
</form>
############################################################################################
################# Below is a Less Frindly Version. No Go button ####################
############################################################################################
############################################################################################
############################################################################################
############################################################################################
<form>
<select name="" onchange="window.location.href=this.form..options[this.form..selectedIndex].value">
<option value="">Menu</option>
</select>
</form>