$(document).ready(function() {
    $('#nocform').submit(function() {
        $('#results').fadeIn('slow').text('Proszę czekać. Polecenie jest wykonywane...');
        $.ajax({
           data: $(this).serialize(),
           type: $(this).attr('method'),
           url: $(this).attr('action'),
           success: function(response) {
                      $('#results').fadeIn('slow').text(response);
                    }
        });
        return false;
    });
});

