$(document).ready(function() {
	$('#selectRegion').change(function () {
		var selection = $("#selectRegion option:selected").attr('value');
		if (selection != 'null') {
			$.ajax({
				type: 'GET',
				url: '/it/contatti/agenzie/' + selection,
				dataType: 'html',
				success: function(html) {
					$('#contatti-agenzie').html(html);
					$('#pane1').jScrollPane();
				}
			});
		}
	})
});
