Remove email validation from field
<!-- START code to remove email validation -->
<script>
ijQuery(document).ready(function(){
//define email field label
var fieldLabel = 'Email';
//change the input type from email to text
ijQuery("input[name='" + base64_encode(fieldLabel) + "']").attr( 'type','text' );
});
</script>
<!-- END code to remove email validation -->