document.write('<form name="jump">'
  + '<select name="menu" onChange="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;" value="GO">'
  + '<option value="area" selected="selected">Select your area</option>'
  + '	<optgroup label="Bar of the Month">'
  + '		<option value="/contact/bar-of-month.php">Bar of the Month</option>'
  + '		<option value="/contact/nominate-bar.php">Nominate a Bar</option>'
  + '	</optgroup>'
  + '	<optgroup label="London">'
  + '		<option value="/bars/london_central.php">London - Central</option>'
  + '		<option value="/bars/london_city.php">London - City</option>'
  + '		<option value="/bars/london_east.php">London - East</option>'
  + '		<option value="/bars/london_north.php">London - North</option>'
  + '		<option value="/bars/london_south.php">London - South</option>'
  + '	</optgroup>'
  + '	<optgroup label="Scotland">'
  + '		<option value="/bars/edinburgh.php">Edinburgh</option>'
  + '		<option value="/bars/glasgow.php">Glasgow</option>'
  + '	</optgroup>'
  + '	<optgroup label="Other Regions">'
  + '		<option value="/bars/england_south.php">England - North</option>'
  + '		<option value="/bars/england_south.php">England - South</option>'
  + '		<option value="/bars/international.php">International</option>'
  + '	</optgroup>'
  + '</select>'
  + '</form>');