How do I condense this Moviclip button function?

I need some advice on how to condense this redundant Movie Clip script:

//ComboBox Scripts
var myListener:Object = new Object();

section_cb.addEventListener(“change”, myListener);

myListener.change = function () {
seating_mc.gotoAndStop(section_cb.value);
empty_mc.loadMovie(“seating/” + section_cb.value + “.jpg”);
};

//movieClip Button Scripts Sections 100-110

seating_mc.btn100_mc.onRollOver = function() {
myColor = new Color(this);
myColor.setRGB(0xFFE400);
}
seating_mc.btn100_mc.onRollOut = function() {
myColor = new Color(this);
myColor.setRGB(0xD3D9FF);
}
seating_mc.btn100_mc.onRelease = function() {
//this script tells movieclip to change comboBox
section_cb.selectedIndex = 0;
empty_mc.loadMovie(“seating/” + section_cb.value + “.jpg”);
seating_mc.gotoAndStop(section_cb.value);
};