// AutoComplete
	function lookup(address) {
		if(address.length == 0) {
			// Hide the suggestion box.
			$('#suggestions').hide();
		} else {
			$.post("autocomplete.php", {queryString: ""+address+""}, function(data){
				if(data.length >0) {
					$('#suggestions').show();
					$('#autoSuggestionsList').html(data);
				}
			});
		}
	} // lookup
	
	function fill(thisValue) {
		$('#address').val(thisValue);
		setTimeout("$('#suggestions').hide();", 200);
	}