function wybormiasta(id,el)
{
	var box = $(el);
	box.options.length=0;
	if (el=='powiat') {
		$('miasto').selectedIndex=0;
		$('miasto').options.length=0;
	}
	box.selectedIndex=0;
	if (id) {
		$('citymsg').setHTML('<img src="images/loading.gif" alt="" /> Proszę czekać...');
		new Ajax('ajaxData.php',{ postBody:'get'+el+'='+id, onComplete: function(opcje) {
			opcje = Json.evaluate(opcje);
			opcje.c.each(function(c) { box.options[box.length] = new Option(c.name,c.id); });
			box.disabled='';
			$('citymsg').setHTML('');
		}}).request();
	}
}

function wybrane(id)
{
	if (!id) {
		alert('Nie wybrano miasta!');
	} else {
		new Ajax('ajaxData.php',{ postBody:'wybranemiasto='+id, onComplete: function() {
			window.location.reload();
		}}).request();
	}
}

function showCity()
{
	$('citymsg').setHTML('Wybrane miasto: '+$('miasto').options[$('miasto').selectedIndex].text);
}
