Se sai già che non saranno né più né meno di due puoi fare così:
codice:
var tuoValore = document.modulo.sol[new Number(document.modulo.sol[1].checked)].value;
oppure
codice:
var tuoValore = document.modulo.sol[1 ^ document.modulo.sol[0].checked].value;
oppure
codice:
var tuoValore = document.modulo.sol[document.modulo.sol[0].checked ? 0 : 1].value;
A te la scelta...