<input id="chk1" type="checkbox" value="1" />

 <input id="chk2" type="checkbox" value="2" />

 <input id="chk3" type="checkbox" value="3" />

 <input id="chk4" type="checkbox" value="4" />

jQuery("input:checkbox").each(function () {
        if (jQuery(this).attr("checked") == true) {
            sKTGameName += jQuery(this).val() + ",";
        }
})