Do not ever use goto. Use a loop instead or some other conditional statement to return to that point of the code.
Do not use getch() it's non-standard and not globally supported on all platforms. Use getchar() instead.