function handleChange( ctx ) {
var el = ctx.previousElementSibling;
if( ctx.checked && el.nodeName.toLowerCase() === "input" ){
el.style.display = 'inline';
el.value = 1;
el.focus();
} else {
el.style.display = 'none';
}
};
// добавьте к коду из вопроса 1 псевдослучайное число в пределах min - max
function rand( min, max ) {
return Math.random() * ( max - min + 1 ) + min;
}