Sorry, Lee. I am laughing so hard...
Suggestions:
Stop whining about how long it takes for someone to write your code for you.
Don't quadruple post. Learn how to edit your posts.
If you don't get an answer in 10 minutes, it might be because other folks have lives and their own problems.
Finally, chill baby, baby, CHILL!
EDIT: Your code is not very helpful. How are you getting the user input? Are you able to clear the screen of text? Are you using a graphic background or black? Is there a loop somewhere?
Basically, it looks like you want to clear all the menu choices and the extra info, then re-write them on the screen with the changed info line.
Here's some code for you to look at. It might not be what you are after, but maybe it will help
Red = RGB(255, 0, 0)
White = RGB(255, 255, 255)
SelectedItem = 1
set text opaque
do
if downkey()
inc SelectedItem
if SelectedItem = 3 then SelectedItem = 1
endif
if upkey()
dec SelectedItem
if SelectedItem = 0 then SelectedItem = 3
endif
If SelectedItem = 1
Ink White, Red
Center Text Screen Width ()/2, 50, "Test 1"
Ink Red, White
Center Text Screen Width ()/2, 70, "Test 2"
Ink White,0
Center Text Screen Width ()/2, 100,"You are sitting on Test 1"
wait 200
Endif
if SelectedItem = 2
Ink Red,White
Center Text Screen Width ()/2, 50, "Test 1"
Ink White,Red
Center Text Screen Width ()/2, 70, "Test 2"
Ink White,0
Center Text Screen Width ()/2, 100,"You are sitting on Test 2"
wait 200
Endif
loop