The problem is that the select are created dynamically, then you need to use .on()
try this:
$(document).on('change','#won',function(){
alert("PROBANDO");
});
The problem is that the select are created dynamically, then you need to use .on()
try this:
$(document).on('change','#won',function(){
alert("PROBANDO");
});