$(document).ready(function(){			
	$('.textarea-large').focus();
	
	$("#county").change(function (change) {
		change.preventDefault();
		$("#commune").load("/core/php/muncip.php", {muncip: document.getElementById("county").value});
	});
});
