chineerat 0 Newbie Poster

Hi!
I am not sure if this the ideal place to post this.

I am having trouble submitting radio button selection to a pdf form.
I am not sure if my naming syntax is correct.

the following code shows the HTML form variable and following pic shows naming of the buttons. the radio buttons are mutually exclusive.
thanks in advance.
[IMG]http://i46.tinypic.com/vzh35t.jpg[/IMG]

<tr><td>First Time Registration  </td><td><label>
        <input type="radio" name="radio" id="first_time" value="first_time" onClick="makeChoice();">
        </label></td></tr>
       <tr>
         <td>Prior Gate Recipient? New Programme</td><td><label>
         <input type="radio" name="radio" id="second_timeA" value="second_timeA" onClick="makeChoice();">
         <input type="text" name="second_timeA_value" id="second_timeA_value" onClick="makeChoice();">
         </label></td></tr>
        <tr>
          <td>Continuing Programme</td><td><label>
          <input type="radio" name="radio" id="second_timeB" value="second_timeB" onClick="makeChoice();">
          <input type="text" name="second_timeB_value" id="second_timeB_value" onClick="makeChoice();">
        </label></td></tr>