Drop down menus and select

Hi I wonder if you can help. I have a javascript page where the user can select from a number of drop down menus and choose a value. When they do this a total figure is calculated. The change event handler is used.


 $("select#spend1").change(function() {      
	 // functions to sum totals 


 }); 

However when the user clicks the drop down and mouses over a value and then mouses out without clicking - a value is selected but the change event handler is not triggered (and required sum functions). Any idea how to make sure the change handler is triggered?

Steven

Hi dont worry i think i found the answer

.bind() – jQuery API