$.ajax({
type : 'POST',
url : '/engine/ajax.php',
data : post_data,
success : function(resp)
{
var result = JSON.parse(resp);
if(result['operation'] == 'yes')
{
$("#info_alm").fadeIn().html('Все отлично ').delay(3200).fadeOut();
}
else $("#info_alm").fadeIn().html('В данный момент нельзя ').delay(3200).fadeOut();
}
});