$(function () {

    $(".show-on-js").show();
    $(".hide-on-js").hide();

    $("a").click(function () {
        //$("form").submit();
        //return false;
        this.href = this.href + '&c=' + $("form input:checkbox").attr('checked');
    });

});

