function reload_wojewodztwa()
{
	var id = $F('city');
	var store = $F('remember_city');
	new Ajax.Request(siteurl + 'ajax/cast_wojewodztwo.php',
	{
		asynchronous: true,
   		method: 'get',
   		parameters: "id=" + id + "&store=" + store,
   		onComplete: function(obj) { reload_wojewodztwa_complete(obj);}
   	});
}


function reload_wojewodztwa_complete(obj)
{
	ithinkOutput = obj.responseText;
	if(ithinkOutput.indexOf('ERROR') != -1)
	{
		alert(ithinkOutput.substr(6));
		return false;
	}
	else
	{
		var finalHTML = '';
		response = ithinkOutput.split('-|-');
		var wojewodztwo_guid = response[0];
		response = response[1].split('|');
		var ile = response.length;
		if(ile > 0 && response[0].length > 4)
		{
			for(var i = 0; i < ile; i++)
			{
				var r = response[i].split('#');
				if(r.length == 4)
				{
					var article_guid = r[0];
					var article_title = r[1];
					var article_location_guid = r[2];
					var article_location_name = r[3];
					finalHTML += '<a href="' + siteurl + article_location_guid + '" class="author">' + article_location_name + '</a><h4><a href="' + siteurl + article_guid + '">' + article_title + '</a></h4><br />';
				}
			}
			if(wojewodztwo_guid != '')
				 finalHTML += '<a href="' + siteurl + 'lokalne/' + wojewodztwo_guid + '" class="arrow">' + _('więcej lokalnych') + '</a>';
		}
		else
		{
			finalHTML = ' <h4>' + _('Jeszcze nie ma żadnych artykułów z Twojego województwa.<br /><br />Ty możesz być osobą, która') + ' <strong><a href="' + siteurl + 'dodaj/">' + _('napisze pierwszy artykuł') + '</a></strong>.</h4>';
		}
		$('ajax_here').innerHTML = finalHTML;
	}
}
