function lookup(inputString, type) { // int type => identify from where the query from (0 for "zip" or 1 for "ville").
	if(inputString.length == 0) {
		// Hide the suggestion box.
		$('#suggestions').hide();
	} else {
		$.post("/js/queryZip2City.php", {queryString: ""+inputString+"", whoAskQuery: ""+type+""}, function(data){
			if(data.length >0) {
				$('#suggestionsZip').show();
				$('#autoSuggestionsListZip').html(data);
			}
		});
	}
} // lookup

function fill(thisZip, thisCity) {
	$('#zip').val(thisZip);
	$('#ville').val(thisCity);
	setTimeout("$('#suggestions').hide();", 200);
	setTimeout("$('#suggestionsZip').hide();", 200);	
}
