$(document).ready( function() {
  var subscribe_prompt = $("input[name=subscribe]").val();

  $("input[name=subscribe]").focus(function(){
    if ($(this).val() == subscribe_prompt) $(this).val('');
  }).blur(function(){
    if ('' == $(this).val()) $(this).val(subscribe_prompt);
  });
});