$(document).ready(function(){
   $('#input_newsletter').focus(function() {
       if($(this).val() == 'email')
            $(this).val('');
   });
});
