I can not find a suitable solution. There is a table so that when choosing the number of hours the line in the table was changed, I tried one option but it does not work. Can anyone help solve this problem, in fact there is nothing complicated but I can not do anything .. there is a Norma trivalost working hour table hodiny for: with 10 lines, and it is necessary that in the drop-down list select and only one line is shown so that the person is not confused with the numbers and only sees the necessary line
var $dependerItem = $('.40god'); $('#edit-field-sity-tid').change(function() { var curentSelectedVal = $(this).find('option:selected').val(); if (curentSelectedVal == 40) { $dependerItem.removeClass('hide'); } else { $dependerItem.addClass('hide'); } }); <table style="width: 100%;" border="0" cellspacing="0"> <tbody> <tr> <td colspan="1" rowspan="10" class="40god " align="left" height="17">Тривалість робочого часу <select id="edit-field-sity-tid" name="field_sity_tid" class="form-select"> <option value="40">40</option> <option value="39">39</option> <option value="38.5">38,5</option> <option value="36">36</option> <option value="33">33</option> <option value="30">30</option> <option value="25">25</option> <option value="24">24</option> <option value="20">20</option> <option value="18">18</option> </select> <br> </td> <td align="center">151</td> <td align="center">168</td> <td align="center">175</td> <td align="center">168</td> <td align="center">152</td> <td align="center">159</td> <td align="center">168</td> <td align="center">175</td> <td align="center">176</td> <td align="center">159</td> <td align="center">176</td> <td align="center">176</td> <td align="center">2003</td> </tr> <tr class="39god hide"> <td align="center">148,2</td> <td align="center">163,8</td> <td align="center">171,6</td> <td align="center">163,8</td> <td align="center">148,2</td> <td align="center">156</td> <td align="center">163,8</td> <td align="center">171,6</td> <td align="center">171,6</td> <td align="center">156</td> <td align="center">171,6</td> <td align="center">171,6</td> <td align="center">1957,8</td> </tr> <tr class="38,5god hide"> <td align="center">146,3</td> <td align="center">161,7</td> <td align="center">169,4</td> <td align="center">161,7</td> <td align="center">146,3</td> <td align="center">154</td> <td align="center">161,7</td> <td align="center">169,4</td> <td align="center">169,4</td> <td align="center">154</td> <td align="center">169,4</td> <td align="center">169,4</td> <td align="center">1932,7</td> </tr> </tbody> </table>