function suggest(inputString){
		if(inputString.length == 0) {
			$('#suggestions').fadeOut();
		} else {
		$('#country').addClass('load');
			$.post("autosuggest.php", {queryString: ""+inputString+""}, function(data){
				if(data.length >0) {
					$('#suggestions').fadeIn();
					$('#suggestionsList').html(data);
					$('#country').removeClass('load');
				}
			});
		}
	}

	function fill(thisValue) {
		$('#country').val(thisValue);
		setTimeout("$('#suggestions').fadeOut();", 600);
	}
	
<!--Search Field validation-->
function validateSearch()
{
  var fldvalue = document.search_form.company_name.value
  
  if (fldvalue == '' || fldvalue == 'Search Company')
  {
    document.search_form.company_name.value = 'Please Type a Company name';
	return false;
  }
  else
  return true;
}
