Upload file , send response when upload is terminated

Upload file , send response when upload is terminated

Hi , i must upload large  file between 1 to 10 (size from 20 to 50 Mb ) , the script work but i must wait too many time to take the response. 

How can i change page and allow user to see other page , but work the php script in background ?

this is my code:
  in datiForm i append file
  1. $(document).ready(function() {
  2.        $("#upload").click(function(e) {

  3.            $.ajax({
  4.             url: 'lavorazione_inserita.php',
  5.             type: 'POST', //Le info testuali saranno passate in POST
  6.             data: datiForm, //I dati, forniti sotto forma di oggetto FormData
  7.             xhr: function() {
  8.                 var myXhr = $.ajaxSettings.xhr();
  9.                 if(myXhr.upload){
  10.                     myXhr.upload.addEventListener('progress',progress, false);
  11.                 }
  12.                 return myXhr;
  13.             },
  14.             cache: false,
  15.             processData: false, //Serve per NON far convertire l’oggetto
  16.                      //FormData in una stringa, preservando il file
  17.             contentType: false, //Serve per NON far inserire automaticamente
  18.                      //un content type errato
  19.             
  20.                success: function(msg)
  21.                {
  22.                  $("#risultato").html(msg);
  23.                  $('#bar').hide();
  24.                },
  25.                error: function()
  26.                {
  27.                  alert("Chiamata fallita fformdata, si prega di riprovare...");
  28.                },
  29.                
  30.    
  31.            });
  32.           
  33.        }
  34.        
  35.     });
  36.     
  37.     
  38.     
  39. });

  40. function progress(e){

  41.     if(e.lengthComputable){
  42.         var max = e.total;
  43.         var current = e.loaded;

  44.         var Percentage = (current * 100)/max;
  45.         //console.log(Percentage);
  46.  $("#progress").html(Math.floor(Percentage)+'%');

  47.         if(Percentage >= 100)
  48.         {
  49.            // process completed  
  50.         }
  51.     }  
  52.  }

  53. </script>
  54.     
The php scipt send file to dropbox and insert values in db .