passing non-model members through remote form

I resolved the issue. It was something I was doing wrong with nesting. The form beginning tag was at the beginning of <td> tag and the form end tag was after end of the table </table>. so for some reason the resulting HTML had </form> tag right before the </td> of the same <td> the form started on! I moved the form beginning tag to before the <table> tag so it included the other fields. Thanks, Tam