function Go (select) {
  var wert = select.options[select.options.selectedIndex].value;
  document.location.href = wert;
  select.form.reset();
}

