$(document).ready(function() {
    $('#htmlForm').ajaxForm({
        target: '#htmlForm',
        success: function() {
            $('#htmlForm').slideDown('slow');
        }
    });
});