私は派手なことをしようとしているわけではありません...特定のチェックボックスの状態が変化したときに、「noshowuntilchangevelocity」クラスのコンテンツの表示と非表示を切り替えるだけです。
$(document).ready(function()
{
$("input#velocity").change(function()
{
$('#noshowuntilchangevelocity').toggle();
});
});
<input id="velocity" name="velocity" type="checkbox"value="Y" checked>
<div id="noshowuntilchangevelocity"style="display: hidden;">
<p class="bolder">You are changing this selection</p>
</div>