function surfTo(mySelect){
  var myIndex = mySelect.selectedIndex;
  if (mySelect.options[myIndex].value != "#"){
    parent.location.href=mySelect.options[myIndex].value;
  }
}