﻿
function showdiv(val){

    var I = document.getElementById('Industries'); //div names on form
    var M = document.getElementById('Mobile_Wallet');

    if (val == 'in'){
        I.style.display = 'block';     //none = hidden
        M.style.display = 'none'; // block will display  
    }

    if (val == 'mw'){
        I.style.display = 'none';     //hidden
        M.style.display = 'block'; // block will display  
    }

}





