diff --git a/form7_modulo.html b/form7_modulo.html
index 55072b7..6340300 100644
--- a/form7_modulo.html
+++ b/form7_modulo.html
@@ -28,6 +28,7 @@ Nome della realtà produttiva (richiesto) [text* text-439 placeholder "Nome"]Numero di dipendenti [number min:0 max:100 number-202]
[radio radio-273 use_label_element default:1 "si" "no"]
+
[textarea textarea-627 placeholder "Nome realtà - tipo di collaborazione, ..."]
diff --git a/scriptDownload.js b/scriptDownload.js
index b83cd3f..3d46263 100644
--- a/scriptDownload.js
+++ b/scriptDownload.js
@@ -1,15 +1,23 @@
+var risposte = jQuery(".wpcf7-form-control"); //e questo è un array di oggetti poi dobbiamo fargli pushare uno per uno il loro valore
+
+var valoribuoni = [];
+
+jQuery(risposte).each(function( index, value ) {
+valore="";
+console.log(index);
+console.log(value);
+valore = jQuery(value).val();
+valoribuoni.push(valore);
+
+});
-var A = [['n','sqrt(n)']];
-for(var j=1; j<5; ++j){
- A.push([j, Math.sqrt(j)]);
-}
var csvRows = [];
-for(var i=0, l=A.length; i
\ No newline at end of file
+}
+
+.post-content form ul {
+ margin: 0 0 1.6em 3em;
+ padding: 1em;
+ border: dotted 5px sandybrown;
+}
+
+
\ No newline at end of file