$.ajax({
async : true,
url: '/engine.htm',
type: "POST",
cache: false,
data: "querytype=auth",
dataType : "xml",
error: function(xml){
alert('ajax error');
}
success: function(xml){
alert('ajax ok');
}
});