$(document).ready(function() {
	$('#name').focus(function() {
		alert("Hello");
		if ( $(this).val() == "Your Name") {
			$(this).val('');
		}
	});
});