window.onload = function() {
	var deftext = 'enter email address';
	var email = document.getElementById('email');

	email.value = deftext;
	email.onfocus = function() { if(this.value == deftext ) this.value = ''; }
	email.onblur = function() { if(this.value == '') this.value = deftext; }
};
