Try this code:
Total: <span class="mySum"></span>
<script>
$(document).ready(function(){
SSI_CustomGraphicalCheckbox();
})
function SSI_CustomGraphicalCheckbox() {
var total = 0;
$('input[name="hid_list_[% QuestionName() %]"]').val().split(',').forEach(function(item){
if (SSI_GetValue('[% QuestionName() %]_' + item)) {
var label = $('label[for="[% QuestionName() %]_' + item + '"]').text();
total += Number(label.match(/[0-9]+\.?[0-9]*/));
}
});
$('.mySum').text('$' + total.toFixed(2));
}
</script>
You can place that first line anywhere you want on the page.