Если у вас есть HTML, который выглядит так:
<input type='radio' name='choices' value='1'>
<input type='radio' name='choices' value='2'>
<input type='radio' name='choices' value='3'>
<input type='radio' name='choices' value='4'>
<input type='radio' name='choices' value='5'>
Вы получите выбранное значение радио с этим:
$("input:radio[name='choices']:checked").val();