The easiest way is to simply refactor your code so the OnSelectedIndexChanged event calls a method, and then call the method in the Button OnClick event as well.
Alternatively you can call an event method exactly like any other method:
Code:
Combo1_SelectedIndexChanged(null, EventArgs.Empty);