<html>
<head>
<style type="text/css">
.checkbox_container {
background-color:#0066cc;
width:300px;
border:solid 2px;
}
.checkbox_container legend {
font-weight: bold;
color:red;
font-size:large;
}
</style>
</head>
<body>
<fieldset class ="checkbox_container">
<legend>5 чекбоксов</legend>
<p>
<input type ="checkbox"> чекбокс № 1</br>
<input type ="checkbox"> чекбокс № 2</br>
<input type ="checkbox"> чекбокс № 3</br>
<input type ="checkbox"> чекбокс № 4</br>
<input type ="checkbox"> чекбокс № 5</br>
</p>
</fieldset>
<script type="text/javascript">
var checkboxes = document.body.children[0].getElementsByTagName("input");
checkboxes[0].onclick = function() {
checkboxes[2].setAttribute("checked", "checked");
}
</script>
</body>
</html>