function SendHiddenForm(name,value){
	if (name=='FormMiasto'){
		var i;
		var CityTmp;
		CityTmp='';
		for (i=0;i<document.forms['FormCity'].length;i++){
			if (document.forms['FormCity'].elements[i].checked){
			CityTmp=CityTmp+';'+document.forms['FormCity'].elements[i].value;
			}
		}
		value=CityTmp;
	}
		document.forms['SearchForm'].elements[name].value=value;
//		alert(document.forms['SearchForm'].elements[name].value);
		document.forms['SearchForm'].submit();
}