jQuery(document).ready(function($) {
	$("#email").focus(function() {
		$(this).css("color", "#000000");
		$(this).val("");
	})
});