ufaclub, или вам нужно сделать все input с одинаковым name? код ниже сработает и так и так
<!DOCTYPE HTML>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
.item div {
display: none;
}
.item input:first-of-type:checked ~ div:first-of-type {
display: block;
}
.item input:last-of-type:checked ~ div:last-of-type {
display: block;
}
</style>
</head>
<body>
<div class="item">
<input type="radio" name="ky" value="30 сантиметров"> 30 см.<br>
<input type="radio" name="ky" value="40 сантиметров"> 40 см.<br>
<div id="30s">цена за 30см</div>
<div id="40s">цена за 40см</div>
</div>
<div class="item">
<input type="radio" name="neky" value="30 сантиметров"> 30 см.<br>
<input type="radio" name="neky" value="40 сантиметров" checked> 40 см.<br>
<div>цена за 30см</div>
<div>цена за 40см</div>
</div>
</body>
</html>