 function form_submit() {
   $('#id_mlm_form').submit();
    if ($("#id_mlm_form").valid()) {
        $('#id_mlm_form').submit();
    }
 }
    

function initialize(){
	// Setup all element functions on the form
	// Form validation
  
	$("#id_mlm_form").validate({
		rules: {
            status:"required",
			company_name:"required",
			company_type:"required",
			contact_person:"required",
            cell_number1:"required",
			email1:{
				required:true,
				email:true
			},
            physical_address:"required",
            country:"required",
            province:"required",
            username:{
				required:true,
				email:true
			},
            password : "required",
            direct_url:"required",
            province:{
                   required:function(element){
                       return $('#id_country').val() != 'South Africa';
                   }
               },
            sa_province:{
                   required:function(element){
                       return $('#id_country').val() == 'South Africal';
                   }
               }
        }
		
    });
    $('#id_country').attr('onChange', 'prov(this.value)');
	set_required_fields(new Array('id_status', 'id_company_name', 'id_company_type', 'id_contact_person', 'id_cell_number1', 'id_email1', 'id_physical_address', 'id_country','id_province', 'id_sa_province', 'id_direct_url', 'id_username', 'id_password'))
}
