/*********************************************
JavaScript Code

Author: Brendan Parker
Project: Menu Master
Date: August 2007
Function: Holds JavaScript Functions.
*********************************************/

function go() {
	box = document.forms[0].cityBox;
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = "DisplayCityListing.php?cityCategory=" + destination; 
} 

