$(document).ready(function(){

  // SEARCH FORM REMOVE/REPLACE
  $("#subscribe-form .text").focus(function(){
    if (this.value=='email address'){
      this.value='';
    }
  }).blur(function(){
    if (this.value==''){
      this.value='email address';
    }
  });

});