function boxcheck(el) {
    var input = document.getElementById(el);
    if (input.value == "") {
        input.className = "txt-search-error";
        return false;
    }
    return true;
}