function onChangeCountry()
{
	// Wybór kraju w polu
    jQuery("select[name=country]").change(function()
	{	var lang = jQuery(this).attr("lang");
		jQuery("select[name=country] option:selected").each(function()
		{
			window.location.replace(lang + "anonse/1/" + jQuery(this).val() + ".html");
        });
    });
}
