Duplicating

The below script is applyed to a submit button. It lets a user type in there txt click the sumbit button and it will then go on the stage where they can change the color and size and rotate. But at the moment if they click it once then change they color and stuff and they click it again for anotherm, one the original one dissapears how do i make it so when they click the submit button once it adds it and they can keep on adding more ?

Heres the script wat do i need to change:
on (release) {
//font = _root.extras.font_cb.getValue();
font = font_cb.getValue();
_global.text = input;

//if (_root.inputbox.text != “” ) {

count++;
duplicateMovieClip(_root.extras.textmovie,“textmovie”+count,count+12);
this[“textmovie”+count].onPress = function() {
this.startDrag();
this.dragging = true;

};
//End of the function
this[“textmovie”+count].onRelease = function() {
stopDrag();
this.dragging = false;
};

//this[“newmovie”+count].onPress = function() {
//tellTarget(_root) {
//txt = this[“newmovie”+count] ;
//}
//};
if (font == “”) {
_root.extras.textpopup._visible = true ;
} else if (font == “Arial”) {
tellTarget ("_root.extras."+[“textmovie”+count]){
gotoAndStop(1);
dtext.text = _global.text;
dtext.border = false;
dtext.background = false;
dtext.backgroundColor = 0xFFFFFF;
dtext.borderColor = 0x000000;
dtext.multiline = false;
dtext.wordWrap = false;
dtext.autoSize = “Left”;
dtext.autoSize = “Right”;
}
} else if (font == “Times”) {
tellTarget ("_root.extras."+[“textmovie”+count]){
gotoAndStop(2);
dtext.text = _global.text;
dtext.border = false;
dtext.background = false;
dtext.backgroundColor = 0xFFFFFF;
dtext.borderColor = 0x000000;
dtext.multiline = false;
dtext.wordWrap = false;
dtext.autoSize = “Left”;
dtext.autoSize = “Right”;
}
} else if (font == “Brush”) {
tellTarget ("_root.extras."+[“textmovie”+count]){
gotoAndStop(3);
dtext.text = _global.text;
dtext.border = false;
dtext.background = false;
dtext.backgroundColor = 0xFFFFFF;
dtext.borderColor = 0x000000;
dtext.multiline = false;
dtext.wordWrap = false;
dtext.autoSize = “Left”;
dtext.autoSize = “Right”;
}
} else if (font == “Comic Sans”) {
tellTarget ("_root.extras."+[“textmovie”+count]){
gotoAndStop(4);
dtext.text = _global.text;
dtext.border = false;
dtext.background = false;
dtext.backgroundColor = 0xFFFFFF;
dtext.borderColor = 0x000000;
dtext.multiline = false;
dtext.wordWrap = false;
dtext.autoSize = “Left”;
dtext.autoSize = “Right”;
}
}
//}
}

thanks