					 jQuery(function($){ 
					 
						 $("#display").hide();
						 
						   $("#searchbox").Watermark("Start typing your location.....");
							
							$(".search").keyup(function() 
							{
							var searchbox = $(this).val();
							var dataString = 'searchword='+ searchbox;
							$("#display").empty().html('<img src="http://www.property-report.com/property-listing/images/loading-new.gif" style="margin-bottom:10px" />');
							
							if(searchbox=='')
							{
								$("#display").hide();
							}
							else
							{
							
							$.ajax({
							type: "POST",
							url: "http://www.property-report.com/property-listing/auto-suggestion/search.php",
							data: dataString,
							cache: false,
							success: function(html)
							{
							
							$("#display").html(html).show();
								
								}
							
							});
							}return false;    
							
							
							}); 
					 });
