By Using MVC4 ,JQuery,And Nhibernate sample Code // Script Block $( function () { $( "#resourceSelectList" ). change ( function () { var urlAction = "~/Planner/LoadPlannerWithFilter?value=" ; var value = $( this ). val (); }); }); @* HTML Markup *@ @ Html . DropDownListFor ( x => x . resourceSelectList , Model . resourceSelectList ) And Cotroller Part public ActionResult PlannerLanding () { WrapperClass wrp = new WrapperClass (); var resourceSelectList = obj . getResourceList () . Select ( x => new SelectListItem { Value = x . Owner , Text = x . Owner }); wrp . resourceSelectList = new SelectL...