I am using prototype's framework.
I wish to fire it upon changed value in, eg: select element, if option changes.
Code:
    Event.observe(document.body, 'change', function(event) {
    alert('I AM EVENT');
    });
Doesn't work in IE7, but does in all other browsers.
Why?