    function selectRegions(region, id) {
	document.cmsform.SearchRegion_Ids.value=id;
	if( region != '' )
	    document.getElementById('SearchRegion').value = region;
	else 
	    document.getElementById('SearchRegion').value = '--- Kérem válasszon ---';
	}

    function selectCities(city, id) {
	document.cmsform.SearchCity_Ids.value=id;
	if(city != '') 
	    document.getElementById('SearchCity').value = city;
	else
	    document.getElementById('SearchCity').value = '--- Kérem válasszon ---';
	    
	if(document.getElementById('SearchCity_Ids').value == 1) {
	    document.getElementById('SearchRegion').value = '--- Kérem válasszon ---';
	    document.getElementById('SearchRegion_Ids').value = '';
	    }
        }

    function selectDistricts(district, id) {
	document.cmsform.SearchDistrict_Ids.value=id;
	if( district != '' )
	    document.getElementById('SearchDistrict').value = district;
	else 
	    document.getElementById('SearchDistrict').value = '--- Kérem válasszon ---';
	
	document.getElementById('mtk_wrapper').style.display='none';
	}
