function clearField(aElement){

	if(aElement.value=="Enter search string..."){
		aElement.value = '';
		}
	else{
		aElement.select();
		}
	}