Are there any more classes? With what you gave us, I see 5 error in Registration; all pertaining to the GetData object.
I don't know what it is that you are trying to do, but I do know, that you are calling on an object, GetData, that doesn't exist. So, you will have to create it.
If your simply trying to ask the user to enter in the last name, then you might try:
String last = JOptionPane.showInputDialog(null, "Enter Lastname");
Based on the information you provided, that is the best answer I can give you.
Good luck!