<script>
function ajaxFormRequest() {
$.ajax({
type: "POST",
url:"",
dataType: "html",
data: jQuery("#RoomForm").serialize(),
success: function(data) {
$('body').html(data).show();
},
error: function(data) {
alert("error");
},
});
}
</script>