$(function(){ $("#btnAdd").click(function(){ //using JQuery ajax to call the handler method and get the select list options. $.ajax({ type: "Get", url: "/Index?handler=GetTypeList", success: function (data) { //add new select element: var newselect = ""; //generate the new form group var newitem = "
"+ newselect +"
"; //append the new elements to the main form. $("#mainform").append(newitem); }, error: function (response) { alert(response.responseText); } }); }); });