function clearInputText(thefield) {
	thefield.value = "";
}

function insertSearchText(thefield) {
	if (thefield.value == "") {
		thefield.value = "Twój e-mail";
	}
} 
