call multiple functions from single event with unobtrusive javascript
I prefer not to use anonymous functions so I would create a new function and place all work inside it.
$('#test').change(onSelectChange);
var onSelectChange = function() {
function1();
function2();
}
You can always chain them:
$('#test').change(function1).change(function2);