Help with my combo box plz

This is the beginning of my typer program, I’m having some difficulties changing the font of the user submitted text, I’m pretty sure its with my combo box details.


 function FontSelect() { 
 	if (myCombo.getValue() == "Garamond") {
 		user_output.setStyle("fontFamily", "Garamond"); 
 	} else if (myCombo.getValue() == "Arial") {
 		user_output.setStyle("fontFamily", "Arial"); 
 	} else if (myCombo.getValue() == "Verdana") {
 		user_output.setStyle("fontFamily", "Verdana"); 
 	}
 }; 

user_output is a textarea containing the text I want to change. myCombo is the combo box.

I have the combo box parameters setup like…

Editable: False
Labels: [Arial,Verdana,Garamond]
Data: [Arial,Verdana,Garamond]
Row Count: 3
Change Handler: FontSelect

Ideas?