I have a problem with JavaScript inputting 2 more fields

I have a problem with JavaScript inputting 2 more fields

    Guys, I am started in programing,

    Would you be kind to help with this:

    I have subscription script, and beside email I want to input 2 more fields where people will put their name and country, and all that to be submitted into subscription file.

    1. self.$container.on("click", ".ssCountdownSubscribeSelector", function(e){
    2. if (e && e.preventDefault) {
    3. e.preventDefault();
    4. }
    5. var $this = $(this),
    6. $form = $this.closest('form'),
    7. $emailAddress = $form.find("input[name='email_address']"),
    8. $errorContainer = $form.find(".ss-error-container");
    9. $errorContainer.css({"color": "#FF0000"}).html("").hide();
    10. if($emailAddress.val() == "") {
    11. $errorContainer.html("Please fill in your email address.").fadeIn();
    12. }
    13. else {
    14. var re = /([0-9a-zA-Z\.\-\_]+)@([0-9a-zA-Z\.\-\_]+)\.([0-9a-zA-Z\.\-\_]+)/,
    15. email_address = $emailAddress.val();
    16. if(email_address.match(re) == null) {
    17. $errorContainer.html("Invalid email address.").fadeIn();
    18. }
    19. else {
    20. $.ajax({
    21. type: "POST",
    22. data: {
    23. email: email_address
    24. },
    25. url: "subscribe/subscribe.php",
    26. success: function(){
    27. $emailAddress.val("");
    28. $errorContainer.css({"color": "#39F"}).html("Thank you for subscribing.").fadeIn();
    29. setTimeout(function(){
    30. $errorContainer.css({"color": "#FF0000"}).html("").hide();
    31. }, 3000);
    32. }
    33. });
    34. }
    35. }
    36. return false;
    37. });