The onChange() event is great, however not great when you are using bit/tickbox type fields. The onChange only fires when you have tabbed away from the field - this is not correct for a bit field. The code behind it should be triggered directly after the click from the mouse.
Heres how you create the onClick() event for a bit field. (This will work for all types of fields, however is more useful on this type)
{codecitation style="brush: javascript;"}crmForm.all.mybitfield.onclick = function()
{
if (crmForm.all.mybitfield.DataValue == 1)
{
// Do something here when the value is checked
}
else
{
// Do something here when the value is not checked!
}
}{/codecitation}
Enjoy
Jonathan