var myVal = document.getElementById('MyvalidatorsClientId');
ValidatorEnable(myVal, false);
where ValidatorEnable(Object, Enabled).
A sample could be
function CountryChanged()
{
var myVal = document.getElementById('ctl00_ContentPlaceHolder1_RfvtxtState');
ValidatorEnable(myVal, false);
}