We're not mind-readers. Explain as clearly and precisely as you can what problem you have. What behaviour are you seeing, and how does that differ from the behaviour you think you should be seeing?
Just as a general bit of advice: your code would be much clearer and easier to understand - for you, and for us - if you used a sensible indentation style. That will help you see at a glance what the flow of control and logic is through the code, and will also help you see scoping issues more easily.
That is much better, I can read your code now. So what is the question ?
If it compiles, runs, gives you the output that it should, doesn't crash when you put in crap data, then it's good and complete, if not then it's not.
So I would remove the system("pause"); line 33
I would remove cin.ignore(); line 69
When I run your program, at the menu, if I type A instead of 1-4, the program doesn't handle that very well. So I would say you need to keep working on it.