How do I correctly append the entire form data to ajax post

How do I correctly append the entire form data to ajax post

hi guys
how do i correctly append form data to an ajax post ? 
here is my code below

  1.   <form id="List_Form">
  2.             <div asp-validation-summary="ModelOnly" class="text-danger"></div>

  3.             <div class="form-group">

  4.                 <label asp-for="Who_Is_It_For" class="control-label">I want to create a list for:</label>
  5.                 @Html.DropDownList("Who_Is_It_For", new List<SelectListItem>
  6.         {
  7.         new SelectListItem{ Text="Myself", Value = "Myself" },
  8.         new SelectListItem{ Text="A Friend", Value = "A Friend" },
  9.         new SelectListItem{ Text="My Group", Value = "My Group" },
  10.         }, new { @class = "btn font-weight-normal" })
  11.                 <span asp-validation-for="Who_Is_It_For" class="text-danger"></span>
  12.             </div>
  13.             <div class="form-group">
  14.                 <div class="row">
  15.                     <div class="col-md-7">
  16.                         <label asp-for="ListType" class="control-label"></label>
  17.                         <select asp-for="ListID" class="form-control" asp-items="ViewBag.ListID"> </select>
  18.                         <span asp-validation-for="ListType" class="text-danger"></span>
  19.                     </div>
  20.                     <div class="col-md-5">
  21.                         or <input type="text" placeholder="Custom List" class="form-control" />
  22.                     </div>
  23.                 </div>
  24.                 <div class="form-group">

  25.                     <label asp-for="Privacy" class="control-label">Privacy</label>
  26.                     @Html.DropDownList("Who_Is_It_For", new List<SelectListItem>
  27. {
  28. new SelectListItem{ Text="Private - (Only me can see it)", Value = "Private" },
  29. new SelectListItem{ Text="Public - (Anyone Can see it)", Value = "Public" },
  30. new SelectListItem{ Text="Restricted - (Only those I invite can see it)", Value = "Restricted" },
  31. }, new { @class = "btn font-weight-normal" })
  32.                 </div>


  33.                 <span asp-validation-for="Privacy" class="text-danger"></span>
  34.             </div>
  35.             <div class="form-group">
  36.                 <label asp-for="User_Chosen_Name" class="control-label">Give a Name</label>
  37.                 <input asp-for="User_Chosen_Name" class="form-control" />
  38.                 <span asp-validation-for="User_Chosen_Name" class="text-danger"></span>
  39.             </div>



  40.             <div class="form-group">

  41.             </div>
  42.         </form>



  43.  function ehi() {
  44.                

  45.                 fd = new FormData($(this)[0]);
  46.                 FormData = $("#List_Form").serialize()
  47.            
  48.                 $.ajax({

  49.                     type: "POST",
  50.                     url: "/Lists/Lists_Create",
  51.                     contentType: false,
  52.                     processData: false,
  53.                     data: fd,
  54.                     success: function (message) {
  55.                         alert(message.one + " 2 "+ message.two );

  56.                     },
  57.                     error: function (message) {
  58.                         alert('There was an error');
  59.                        
  60.                     }

  61.                 });