(function($) {

$(function() {
  $('input[type=text]').focus(function() {
    $(this).val('').unbind('focus');
  });
});

})(jQuery);