
//zaznacz miasto
if ( typeof(province_sel) != 'undefined' ){

  setTimeout('setCity()',1000);
  
  function setCity(){
  
    selectC = document.getElementById('cities');
    for (var i = 0; i < selectC.length; i++) {
       if ( selectC.options[i].value == city_sel) selectC.options[i].selected = true;
    }
  
  }  
  
  setTimeout('getSubjectsFill(city_sel)',2000);
  setTimeout("document.getElementById('searchb').disabled = true;",2500);
  
}

