document.write(' <form class="g" action="#"> ');
document.write(' place of interest: ');
document.write(' <select name="address" size="1" onchange="showAddress(this.form.address.options[this.form.address.selectedIndex].value); return false"> ');


document.write('     <option value="Belfast">Belfast</option> ');
document.write('     <option value="Cork">Cork</option> ');
document.write('     <option value="Dingle">Dingle</option> ');
document.write('     <option value="Dublin">Dublin</option> ');
document.write('     <option value="Galway">Galway</option> ');
document.write('     <option value="Limerick">Limerick</option> ');
document.write('     <option value="Moher">Moher</option> ');
document.write('     <option value="Rosslare Harbour">Rosslare</option> ');
document.write('     <option value="Shannon Airport">Shannon</option> ');
document.write('     <option value="Tullamore">Tullamore</option> ');

document.write(' </select> ');
document.write(' </form> ');


   function showAddress(address) {
   	address=address+' , Ireland';
   	
     gdir.clear();
      if (geocoder) {
        geocoder.getLatLng(
          address,
          function(point) {
            if (!point) {
              alert(address + " nicht gefunden");

        } else {
        	
              map.setCenter(point, 13);
              var marker = new GMarker(point);
              map.addOverlay(marker);
              marker.openInfoWindowHtml(address);
              document.getElementById("toAddress").innerHTML = address;
            }
          }
        );
      }
    }