// városok

function suggest_tev(inputString){
                if(inputString.length == 0) {
                        $('#suggestions_tev').fadeOut();
                } else {
                $('#country_tevtext').addClass('load');
                        $.post("modules/autosuggest.php", {queryString: ""+inputString+""}, function(data){
                                if(data.length >0) {
                                        $('#suggestions_tev').fadeIn();
                                        $('#suggestionsList_tev').html(data);
                                        $('#country_tevtext').removeClass('load');
                                }
                        });
                }
        }

        function fill_tev(thisValue) {
                $('#country_tev').val(thisValue);
                setTimeout("$('#suggestions_tev').fadeOut();", 400);
        }
        
        function fill_tevtext(thisValue) {
                $('#country_tevtext').val(thisValue);
                setTimeout("$('#suggestions_tev').fadeOut();", 400);
        }        