$(document).ready(function()
{
  $('.box3 input[type!=submit]').focus(function()
  {
    $(this).val('');
  });
});

