you have the forms action set to post to another page:
<form action="#/modules/ajax.php?processContactForm" name="contact_form" id="contact-form" method="post">
change that so it posts to itself:
<form action="" name="contact_form" id="contact-form" method="post">