ho risolto in questo modo:

codice:
 $("#btnSend").click(function(){
		var mycheck = new Array();
$('input:checkbox[name="a01_1[]"]').each(function() {
			if (this.checked) {
				mycheck.push(this.value);
			}
		});
ecc ecc...
Grazie.