var act=0;
var to=null;

function cf() {
act=1;


        var f = document.getElementById('type');
        if (f.value.length<1 || f.value.length=='') {act--;}

        clearTimeout(to);
        to=setTimeout('cf()',100);
        return act;

}
function checkform () {
if (cf()>0) {
document.searchform.submit();
} else {alert('Не выбран вид недвижимости'); document.searchform.type.focus();}

}
