Combobox control load graph

hello…
I have problem about combobox.
I have one combobox and in labels is “Underdamped,Overdamped,Undamped,Crittally damped”
if then select sameone in combobox .It plot graph line and then I select new other in combox it dont work. I must close its and open it again.
I want it work continous.I select someone in combobox it plot graph one line and I select new other in combobox it done work and line of any graph dont lose.
can sameone help me?
Thanks you.

then select sameone in combobox . in example I select “Critally damped”

I select new other in combox it dont work.I must close its and open it again

this code

this.createEmptyMovieClip(“graph_mc”,this.getNextHighestDepth());
this.createEmptyMovieClip(“graph1_mc”,this.getNextHighestDepth());
this.createEmptyMovieClip(“graph2_mc”,this.getNextHighestDepth());
this.createEmptyMovieClip(“graph3_mc”,this.getNextHighestDepth());
LO = new Object();
LO.change = function(EO)
{
c1Value= c1.getSelectedItem().label;
checkValue();
};
graph_mc.moveTo(100,300);
graph1_mc.moveTo(100,300);
graph2_mc.moveTo(100,300);
graph3_mc.moveTo(100,300);
graph_mc.lineStyle(2,0xFF0000);
graph1_mc.lineStyle(2,0xFFFF00);
graph2_mc.lineStyle(2,0xFFCCFF);
graph3_mc.lineStyle(2,0x9900FF);
var t:Number = 0;
var i:Number =-98;
this.onEnterFrame=function()
{

if(i<148&&c1Value==“Critically damped”)
{
Go=(3Math.exp(-3t)+Math.exp(-3t))/5;
graph_mc.lineTo(201+i,140-260
Go/150*i);
t+=1/12;
i=i+3;

}
if(i<139&&c1Value==“Undamped”)
{
G1=(1+Math.sin(3t-19.4));
graph1_mc.lineTo(209+i,300-80
G1);
t+=1/20;
i=i+3;

}

if(i<148&&c1Value==“Underdamped”)
{
Go=1.5*(1.06*Math.exp(-t)Math.cos(Math.sqrt(8)t-19.47));
graph2_mc.lineTo(198+i,140-190
Go/150
i);
t+=1/7;
i=i+3;

}
if(i<148&&c1Value==“Overdamped”)
{
Go=(0.171Math.exp(-7.854t)+1.171Math.exp(-1.146t))/1.8;
graph3_mc.lineTo(202.5+i,140-260Go/150i);
t+=1/12;
i=i+3;

}
}

_root.c1.addEventListener(“change”, LO);