$(function(){
	$('#newsCountry').change(function(){
		$('#agendaNewsList').load('/inc/ajax/loadAgendaNews.php', {language: language, countryId : $(this).attr('value')});
	});	
	$('#eventCountry').change(function(){
		$('#agendaEventsList').load('/inc/ajax/loadAgendaEvents.php', {language: language, countryId : $(this).attr('value')});
	});		
})
