Ajax function
$(function () { $(\'form\').submit(function () { if ($(this).valid()) { $.ajax({ url: this.action,
Try like this:
data:$('this').serialize() + "&locations=" + getCheckedLocation() "&reports=" + getCheckedReports()
It will work.
Hope it helps