Zhenyaxxxx,
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
.diametr_form label{
display: table-row;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
var checkbox = $('[name="diametr"]'), block = $(".prom_vents > div");
block.hide();
checkbox.change(function() {
var cls = "" + $.map(checkbox.filter(":checked"), function(el) {
return el.value
});
block.hide().filter(cls).show();
});
});
</script>
</head>
<body>
<form method="post" action="" class="diametr_form"><label></label>
<label><input type="checkbox" name="diametr" value=".d100" class="d100" />100 мм</label>
<label><input type="checkbox" name="diametr" value=".d125" class="d125" />125 мм</label>
<label><input type="checkbox" name="diametr" value=".d150" class="d150" />150 мм</label>
</form>
<div class="prom_vents">
<div class="d100">100</div>
<div class="d125">125</div>
<div class="d150">150</div>
</div>
</body>
</html>