$.ajax({
url: Next_Url,
data: type,
type: "GET",
success: function (response) {
$('#right').html(response);
}, complete: function () {
var languageType = location.href.substr(location.href.lastIndexOf("?") + 6, 5);
change(languageType);
}
});