function openURL()
{

      // grab index number of the selected option
      selInd = document.NZ_city_search.city.selectedIndex;

      // get value of the selected option
      goURL = document.NZ_city_search.city.options[selInd].value;

      // redirect browser to the grabbed value (here a URL)
      top.location.href = goURL;

}