// JavaScript Document

function clearText(el) {
    if (el.value == "Поиск")
        el.value = "";
}

function resetText(el) {
    if (el.value == "")
        el.value = "Поиск";
} 