I did try a very simple test to display a row when i click on an option of a select field. It does work on every browser i believe, except Chrome. It does nothing at all and when i check the javascript debug console it doesn't even give an error.
<select name="test">
<option value="1">one</option>
<option value="2" id="show_div">two</option>
</select>
<div id="show_block" style="display:none;">it works!</div>
The very simple jquery
$('#show_div').click(function(){
$('#show_block').show();
});
i tried instead of click, change, but no result in Chrome. Idea's?