$(document).ready(function() {
	$('input.key-word').focus(function() {
	
        if (this.value == this.defaultValue){
        	this.value = '';
    	}
        if(this.value != this.defaultValue){
	    	this.select();
        }
    });
});



