FIRST paste this source on top on the <BODY> tag:
<script>
function surfto() { document.location=document.form.where.options[document.form.where.selectedIndex].value }
</script>
THEN paste this source below the <BODY> tag:
<form name="form">
<select name="where">
<option value="http://www.yahoo.com">YAHOO
<option value="http://www.hotmail.com">HOTMAIL
<option value="http://www.htmlgoodies.com">HTMLgoodies
<option value="http://www.geocities.com">Geocities
</select>
<input type="button" value="GO!" onclick="surfto()">