function menu_goto( menuform )
{
  var baseurl = '' ;
  selecteditem = menuform.url.selectedIndex ;
  newurl = menuform.url.options[ selecteditem ].value ;
  if (newurl.length != 0) {
    location.href = baseurl + newurl ;
  }
}
document.writeln( '<form action="chgoto" method="get">' );
document.writeln( '<select name="url" onchange="menu_goto(this.form)">' );
document.writeln( '<option value="#">PLEASE SELECT</option>' );
document.writeln( '<option value="http://www.ccclub.dk">COPENHAGEN</option>' );
document.writeln( '<option value="http://www.cccedinburgh.co.uk">EDINBURGH</option>' );
document.writeln( '<option value="http://www.cccedinburgh.co.uk/glasgow.asp">GLASGOW</option>' );
document.writeln( '<option value="/la.asp">LA: COMING 2009</option>' );
document.writeln( '<option value="http://www.classiccarclub.lt">LITHUANIA</option>' );
document.writeln( '<option value="/home.asp">LONDON</option>' );
document.writeln( '<option value="http://manhattan.classiccarclub.com">MANHATTAN</option>' );
document.writeln( '<option value="#">MIAMI: COMING 2009</option>' );
document.writeln( '</select>' );
document.writeln( '</form>' );