I wonder if someone can help me out with this

I have 9 buttons on stage that get an MC call planetdiscmc attached to it. how can I remove the planetdiscmc each time a BTN has been click onto.

here my script for removing

thanks
Code:
function planetBtns() {
	var btnCnt = buttons.length;
	for (i=0; i<btnCnt; i++) {
		var btnplanet = this.ee["planet"+i];
		btnplanet.onRelease = function() {
			removeMovieClip(this.ee["planet"+i].planetdiscmc);
		};
	}
}
buttons = new Array("planet1", "planet2", "planet3", "planet4", "planet5", "planet6", "planet7", "planet8", "planet9");
planetBtns();