jajaja, el problema es que en firefox me recoge en valor pero en IE nop
   Código PHP:
    function coordenadas() {
    var cuantas = document.getElementById('info').rows.length; // cuento las filas
    var total = cuantas-1; // le resto la fila de los titulos
        if (total == 1) {
            var lat = document.getElementById('latitud'); // document.getElementById devuelve solamente un elemento                    
            alert (lat.value);
        }  
        
        else if (total != 1) {
            var latitud = document.form["latitud[]"];
            for (i=0; lat=latitud[i]; i++) {
            alert(lat.value);
            }
        }  
}