function unCheckSkill(start, end) {
    for (var i = start; i <= end; i++) {
        $("#skill"+i).removeAttr('checked');
    }
}

