var clicked = false;
function searchClick(el) {
	if(!clicked)
		el.value = '';
	clicked = true;
}

