neptun419,
$(function() {
function convert(n) {
n = n.toString(16);
return '0'.repeat(Math.max(1 - n.length, 0)) + n;
};
$(':checkbox').click(function() {
var typ = this.className;
var summ = 0;
$('.' + typ + ':checked').each(function() {
summ += parseInt(this.value);
});
$('span.' + typ).text(convert(summ));
});
});