$(document).ready(function() {
  // add css class and placeholder text to the search input field
  var placeholder = 'Enter the full name of your organization here';
	$('#search').addClass('purty').val(placeholder).focus(function()
	  // if the field receives focus, clear out the css class and placeholder text 
	  {
		  if (this.value == placeholder) {
			  $(this).removeClass('purty').val('');
			}
		// fire the autocomplete
    $(this).autocomplete('rpc.php', {
      minChars: 4,  
		  width:400
	  });			
  }); // end innner function
}); // end outer $(documemt).ready() function
