function ajaxCorte(id){
	$.ajax({
	  url: "ajaxCorte.php?id="+id,
	  cache: false,
	  success: function(html){
		$("#ajaxCorte").html(html);
	  }
	});
}