﻿/* checks if dropdown contains a valid value */
function checkDropDown(source, arguments){
    if (arguments.Value==0) {
        arguments.IsValid=false
    }else{
        arguments.IsValid=true
    }
}



