Passing Variables from Flash to ASP

So I’m working on a flash form that needs to pass data into a database. I have successfully passed input text data without a problem, but have encountered difficulty passing data from a combo box. Examples of my code are below.

For the submit button:


on(press){
myData = new LoadVars();
myData.fName = fName.text
myData.lName = lName.text
myData.month_cb = month_cb.text
myData.day_cb = day_cb.text
myData.year_cb = year_cb.text
myData.addr1 = addr1.text
myData.addr2 = addr2.text
myData.city = city.text
myData.state_cb = state_cb.data
myData.zip = zip.text
myData.gender = gender.text
myData.stuff1 = stuff1.text
myData.stuff2 = stuff2.text
myData.email = email.text
myData.sendAndLoad("formtest.asp", myData, "POST");
}

example combo box:


import mx.transitions.Tween;
import mx.transitions.easing.*;
this.createClassObject(mx.controls.ComboBox, "month_cb", this.getNextHighestDepth());
var product_array:Array = new Array("January", "February", "March", "April", "May","June","July","August","September","October","November","December");
month_cb.dataProvider = product_array;
month_cb.setSize(90,22);
month_cb.setStyle("openDuration",500);
month_cb.setStyle("openEasing", Back.easeOut);
month_cb._x=-75;
month_cb._y=1;
month_cb._alpha=0;
var Bounce:Tween = new Tween(month_cb, "_alpha", Strong.easeOut, month_cb._alpha, 100, 1, true);

this.createClassObject(mx.controls.ComboBox, "day_cb", this.getNextHighestDepth());
var product_array:Array = new Array("1", "2", "3", "4", "5","6","7","8","9","10","11","12", "13", "14", "15","16","17","18","19","20","21","22","23", "24", "25","26","27","28","29","30","31");
day_cb.dataProvider = product_array;
day_cb.setSize(40,22);
day_cb.setStyle("openDuration",500);
day_cb.setStyle("openEasing", Back.easeOut);
day_cb._x=30;
day_cb._y=1;
day_cb._alpha=0;
var Bounce:Tween = new Tween(day_cb, "_alpha", Strong.easeOut, day_cb._alpha, 100, 1, true);

I’m sure its something very simple that needs to be changed, like the data type but I can’t figure it out or find anything online to help. Any input would be appreciated.