//remove initial values from selected inputs
$(document).ready(function(){

 $('#FirstName').focus(function(){
  this.value=' ';
 });
  $('#EmailAddress').focus(function(){
  this.value=' ';
 });
   $('##HomePhone').focus(function(){
  this.value=' ';
 });
     $('#CAT_Search').focus(function(){
  this.value=' ';
 });

});