function clearGhostText(){
	//Clear the Ghost Text if it is still set.
	var name = document.getElementById('keyword')
	if(name != null){
		if(name.value == 'Enter Keyword'){
			name.value = '';
		}
	}
	
}
