E-mail form comboBox xml & images

e-mail form comboBox xml & images
Sorry I think I posted in AS 3.0 but this is an AS 2.0
Hi Forum friends,
I wonder if is there anyone that has seen this question and guide me to the appropriate guideline.
I have an e-mail form that has a comoBox which displayed the contacts that I am sending the e-mail, the information is propagated from an XML file “emails.xml”.
Everything works fine but I was wonder in how to include the contact picture once is selected from the comboBox?
Thanks so much in advance for those gurus that are willing to help me, I am a newbiew and I looked in most of the articles about XML basics and images to be displayed as a gallery, but nothing related in regards of the comboBox.
Here is my script so far.

txtStatus.embededFonts = true;
txtStatus.text = _parent.messageCombo;
mask.height = 0;
var emails.XML = new XML();
emails.ignoreWhite = true;
emails.onLoad = makeCombo;
emails.load(“emails.xml”);
function makeCombo():Void {
var r:XMLNode = emails.firstChild;
var c:Number = r.childNodes.length;
for (var i:Number = 0; i < c; i++) {
var u:MovieClip = buttons.attachMovie("_item, “_item” + i, i);
u._x = 0;
u._y = 0 + i * 16;
u.id = i;
u.txtEmail.txt = r.childNodes*.firstChild.NodeValue;
u.onRealease = function():Void {
bgCombo.colorTo(_parent.colorOut, _parent.bgVelocity, _parent,bgAnimation);
txtStatus.efecto(r.childNodes[this.id].firstChild.nodeValue);
mask.height = 0;
_global.emailVar = r.childNodes[this.id].attributes.dir;
trace(_global.emailVar)
};
u.onRollOver = function():Void {
this.bgU.colorTo(_parent.colorOverCombo, _parent.bgVelocity, _parent.bgAnimation);
};
u.onRollOut = function():Void {
this.bgU.colorTo(_parent.colorOutCombo, _parent.bgVelocity, _parent.bgAnimation);
};
}
};
btn_open.onRealease = function():Void {
mask.height = buttons.height;
};
btn_open.onRollOver = function():Void {
this.bg.colorTo(_parent.colorOverComboBtn, _parent.bgVelocity, _parent.bgAnimation);
};
btn_open.onRollOut = function():Void {
this.bg.colorTo(_parent.colorOutComboBtn, _parent.bgVelocity, _parent.bgAnimation);
};

Thanks