$(document).ready(function(){

   $("#searchbox input[type='text']").focus(function () {
      $(this).removeAttr("value");
   });

});   