Не совсем понял что нужно, но вот как можно пройтись по активным radio:
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
var txt = '';
$('input[type=radio]:checked').each(function() {
txt += $(this).attr('id')+'<br />';
});
$('#txt').html(txt);
});
</script>
</head>
<body>
<input type="radio" id="auto" checked />
<input type="radio" id="moto" />
<input type="radio" id="other" checked />
<div id="txt"></div>
</body>
</html>