In the form that I am creating, I have a series of textboxes that need to be copied and pasted together into one box. The text in the current textboxes also need to have a value next to them in the output box so to speak

For Example:
Input -
Name: John Smith
Age: 25
Issue: Could not find his way home.
Resolution: Gave him directions back home.

Output-
CU: John Smith
Age: 25
ISS: Could not find his way home.
RESO: Gave him directions back home.


Something along those lines. I know there is a way for me to copy text directly from a text box, but what I would like is a value added as well. Does that make sense? Im trying to describe it as basically as possible.

Right now I have a JavaScript application I am using with IE6(only browser company will allow) that will add values when text has been copied. I would like for the same thing to happen with this if possible.

Thanks in advance for any help you guys are able to help in any way!