function removeText( textField ) {
	textField.value = "";
}
	
$(document).ready(function(){
	$("#keyword").attr( "onfocus" , "removeText( this )");
});

