$(document).ready(function() {

	$('#q').focus(function(){
	  if(this.value=='My Dad would like to...')
	  {
	  this.value=''
	  }
	 });

});
