$(document).ready(function(){
  /* when focus search remove text */
  $('.search').focus(function(){
    $(this).val('');
  });
});