with javascript 😉
something like
<input type="checkbox" name="tickme" onclick="refresh_form()" />
and the js:
function refresh_form() {
tickbox_to_refresh.enabled = !tickme.checked;
}
code won't work for sure but you should know how it goes i think