when you want to register an event like onchange you have to put it inside
$(documet).ready(function(){
$('#numbers').change(function(){
alert('other value');
});
});
note that $ (documet) .ready () is equal to $ () as Felix pointed out!
, , Javascript, :
window.onload=function(){};