C элементом select мне кажется проще как-то так работать:
<select>
<option>server1</option>
<option>server2</option>
</select>
<script type="text/javascript">
window.onload = function(){
var options = document.getElementsByTagName('option');
var array = ['','http://javascript.ru', 'http://javascript.ru/forum'];
for(i=0; i<options.length; i++){
options[i].value = array[i];
document.getElementsByTagName('select')[0].onchange = function(){
top.location.href = this.options[this.selectedIndex].value;
};
}
};
</script>