﻿$(document).ready(function() {
    $("#drpIndustry").bind("click", function() {
        if ($("#drpIndustry").val() != "") {
            $("#drpConstituteIndustry").val("");
        }
    });
    $("#drpConstituteIndustry").bind("click", function() {
        if ($("#drpConstituteIndustry").val() != "") {
            $("#drpIndustry").val(""); ;
        }
    });
})
