Form with conditional checkbox group

@urstomer just use my code and instead of

notSelected.forEach(e=>$w("#input"+ e).collapse());
selected.forEach(e=>$w("#input"+ e).expand());

Use:

notSelected.forEach(e=>$w("#box" + e).collapse()); 
selected.forEach(e => $w("#box" + e).expand());