fenix_63,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js">
</script>
<script>
$(function()
{
var inps = $("div.controls input");
inps.click(function()
{
inps.prop(
{"checked": this.checked})
}
)
}
);
</script>
</head>
<body>
<div class="controls">
<label><input type="checkbox">Связанный</label>
<label><input type="checkbox">Выбор</label>
</div>
</body>
</html>