function loadRubrics(value) {

	var req = new JsHttpRequest();
    req.onreadystatechange = function() {
        if (req.readyState == 1) {
            document.getElementById('subrubrics').innerHTML = '<center>Processing...</center>';
            
        }
    	
        if (req.readyState == 4) {
            document.getElementById('subrubrics').innerHTML = req.responseText;
        }
    }
    req.open('get', '/aparts/education_form.php', true);
    req.send({"id":value});
    
    if(document.getElementById('lang_js').value=='ukr')
    {
    	if(value== 100) document.getElementById('s_form').action = '';
    	if(value== 1) document.getElementById('s_form').action = '/ukr/university/search/';
    	if(value== 2) document.getElementById('s_form').action = '/ukr/education_language/search/';	
    	if(value== 3) document.getElementById('s_form').action = '/ukr/qualification/search/';
    	if(value== 4) document.getElementById('s_form').action = '/ukr/education_country/search/';    
    	if(value== 5) document.getElementById('s_form').action = '/ukr/education_mba/search/';    
    } else {
    	if(value== 100) document.getElementById('s_form').action = '';
    	if(value== 1) document.getElementById('s_form').action = '/university/search/';
    	if(value== 2) document.getElementById('s_form').action = '/education_language/search/';	
    	if(value== 3) document.getElementById('s_form').action = '/qualification/search/';
    	if(value== 4) document.getElementById('s_form').action = '/education_country/search/';    
    	if(value== 5) document.getElementById('s_form').action = '/education_mba/search/';    
    }
}

