function doOnLoad() {
	document.z1 = new dhtmlXCombo("combo_imie", "imie", 221);
	document.z1.enableFilteringMode(true, window.dhx_globalStoragePath+"dictionary_data/imiona.php", true, true);

	
	document.z3 = new dhtmlXCombo("combo_szkoly", "szkola", 345);	
	
	document.z2 = new dhtmlXCombo("combo_kodp", "kod", 67);
	document.z2.enableFilteringMode(true, window.dhx_globalStoragePath+"dictionary_data/kody_pocztowe.php", true, true);
	//var kid = document.getElementById('kartoteka_id').value;
	document.z2.attachChildCombo(document.z3, window.dhx_globalStoragePath+"dictionary_data/szkoly.php");
	
	
	document.z3.readonly(true);

	document.z2.attachEvent("onChange", onSelectionChangeFunc_1);
	document.z3.attachEvent("onChange", onSelectionChangeFunc_2);
	
		
	//document.z4 = new dhtmlXCombo("combo_imie_dyr", "imie_dyr", 220);
	//document.z4.enableFilteringMode(true, window.dhx_globalStoragePath+"dictionary_data/imiona.php", true, true);
}

//pole kodow pocztowych
onSelectionChangeFunc_1 = function() {
	var cbx_value = this.getComboText();
	var reg1 = /^[0-9]{2}(-)[0-9]{3}$/;
	if(cbx_value){
		if (cbx_value != '' && cbx_value.match(reg1)) {		
			document.getElementById('et_wybor').style.display = 'block';
			document.getElementById('et_zespoly').style.display = 'block';
			document.z3.show(true)
			
		}else{
			document.getElementById('et_wybor').style.display = 'none';	
			document.getElementById('et_zespoly').style.display = 'none';
			document.z3.show(false)
		}
	}else{
		//opis pola z lista szkol
		document.getElementById('et_wybor').style.display = 'none';
		document.getElementById('et_zespoly').style.display = 'none';
		//pole z lista szkol
		document.z3.show(false) 
	} 
	//przycisk "dalej"
	document.getElementById('napis_3').style.display = 'none';
};

// pole z lista szkół
onSelectionChangeFunc_2 = function() {
	var cbx_value = this.getSelectedValue();
	//alert(cbx_value)
	if(cbx_value){
		if (cbx_value == 'brak_szkol' || cbx_value == '') {			
			// przycisk dalej
			document.getElementById('napis_3').style.display = 'none';
		} else if (cbx_value == 'infolinia') {			
			// przycisk dalej
			document.getElementById('napis_3').style.display = 'none';
		} else {
			//przycisk dalej
			document.getElementById('napis_3').style.display = 'block';
			//przekazywanie logo z listy szkol
			document.getElementById('logo_szkoly').value = this.getSelectedValue();
		}		
	}
};