// JavaScript Document

// don't submit form if nothing is chosen
addLoadEvent( 
	function() {
		if ( document.forms['travelSearch'] ) {
			document.forms['travelSearch'].onsubmit = function() {
				if ( !document.forms['travelSearch'].state.value ) {
					return false;
				}
			};
		}
	}
);

