Solved
Hi all,
I found a solution that worked and was easy to impliment.
Becuase I had a lot of extra fields to add if a check box was checked, hiding a "Div" was more appropiate.
Here is what i did.
Added
<head>
<script type="text/javascript">
<!--
function showMe (it, box) {
var vis = (box.checked) ? "block" : "none";
document.getElementById(it).style.display = vis;
}
//-->
</script>
</head>
Added
onclick="showMe('webdet', this) to the input type
<input type="checkbox" name="Membership_Required[]" id="Privileged_Member_Plus" value="Privileged Member Plus" onclick="showMe('webdet', this)" />
Created a new "Div" called webdet
Toptip.
Create your divide and add your form elements before you add the javascript to the head and the onclick code. If you add them before, you will only see your div form elements in code view.
Hope that this helps
Jonathon