Depending on your need for jQuery, a template like this I usually use. (You should be able to connect jQuery events to this, I save this until the base template.)
<div class="checkBoxList">
<% foreach (MyObject o in Model.MyObjects) { %>
<input type="checkbox" name="myObjectSelections"
value="<%=o.Value%>" /><br />
<%=o.Text%>
<% } %>
</div>
(I can clarify this answer after a couple of hours, as soon as I am at work, and look at my real code for this, but it should start working.)
bool myObjectSelections.