$.ajax({
data: parametros,
url: 'ejemplo_ajax_proceso.php',
dataType: 'html',
type: 'post',
beforeSend: function () {
$("#resultado").html("please wait...");
},
success: function (response) {
$("#resultado").html(response);
},
error: function() {
//code here
}
});