function inputNotEmpty(elem, valueSearch){
	if(elem.value.length == 0 || elem.value == valueSearch){
		elem.value = '';
		elem.focus(); // set the focus to this input
		return false;
	} 
	return true;
}