Not used ajaxForm(), so I don't know if it works in the same way, but using straightforward ajax(), retrieving an html page that includes an element with, say, #message, containing the result of submitting a form then:
Code:
...
success: function(data){
var message = $('#message',data).html();
...
will allow the message to be retrieved.