$(function() {
	$('#preventivo_personale_tipo_impiego_id').change(function(){
		var id = $(this).val();
		var impiego = $('#preventivo_personale_impiego_id');
		if (id) {
			$.get(impiego_url, {tipo_impiego_id: id}, function(data) {
				$(impiego).html(data);
			});
		} else {
			$(impiego).empty();
		}
	});
});