Даю наводку, в каком направлении идти:
<script type="text/javascript">
window.onload = function() {
var select = document.getElementById("menu").getElementsByTagName('select');
for(i=0; i<select.length; i++) {
select[i].onchange = function() {
top.location.href = this.options[this.selectedIndex].value;
}
select[i].onfocus = function() {
this.form.reset();
}
}
};
</script>
<div id="menu">
<form action="" method="get">
<select>
<option value="">- - - - - выберите - - - - </option>
<option value="yandex.ru">yandex.ru</option>
<option value="google.ru">google.ru</option>
<option value="rambler.ru">rambler.ru</option>
<option value="mail.ru">mail.ru</option>
</select>
</form>
</div>