how not to submit the form elemtns once it's hidden?

how not to submit the form elemtns once it's hidden?

Hello,

I have the following code working fine but the problem is that it always submits the first div (article) even though it's hidden.  My question is how do I submit the form and the elements in the form in the div that's shown?  (if I select Music radiobutton, I want to submit the input elements of the Music Div not the Article div.  Thanks.
    1. $(document).ready(function(){ 
    2.      $("input[name$='itemlist']").click(function() {
    3.        var selection = $(this).val();
    4.        $("div.box").hide();
    5.        $("#"+selection).show();
    6.    });
    7. });

    8. <!--radio buttons-->
    9. <div id="articleselection"><input name="itemlist" type="radio" value="article" /> Article/Book </div>
    10. <div id="musicselection"><input name="itemlist" type="radio" value="music" /> Music</div>

    11. <!--article div starts-->
    12. <div id="article" class="box">
    13. <table class="fieldgroup">
    14. <tr><td>Journal Title: <input id="JournalTitle" name="JournalTitle" type="text" size="60" class="f-name" tabindex="1" value="JournalTitle">
    15. </table>

    16. <table class="fieldgroup">
    17. <tr><td>Article Author: <input id="ArticleAuthor" name="ArticleAuthor" type="text" size="40" class="f-name" tabindex="2" value="<"ArticleAuthor"></td></tr>
    18. </table>
    19. </div>

    20. <!--music div starts-->
    21. <div id="music" class="box">
    22. <table class="fieldgroup">
    23. <tr><td>Music Title: <input id=" Music Title" name=" Music Title" type="text" size="60" class="f-name" tabindex="1" value=" Music Title">
    24. </table

    25. <table class="fieldgroup">
    26. <tr><td>  Music Author: <input id=" MusicAuthor" name=" Music Author" type="text" size="40" class="f-name" tabindex="2" value="<"MusicAuthor"></td></tr>
    27. </table>
    28. </div>