Please try adding this script to your select question:
<script>
$(document).on('keyup', '#[% QuestionName() %]_div input[type=text], #[% QuestionName() %]_div textarea', function(){
if (!$(this).val()) {
var checkbox = $(this).closest('.clickable').find('input[type=checkbox]');
if ($(checkbox).length) {
SSI_SetSelect($(checkbox).attr('id'), false);
}
else {
SSI_RadioReset('[% QuestionName() %]');
}
}
})
</script>