inp4.oninput = function(){
let val = inp4.value;
if (!validateLat(val)){
btn4.setAttribute('disabled', true);
}else{
btn4.removeAttribute('disabled');
}
};
if (!validateLat(val.length < 6)){
const simpleString = '7911xxxxxxx';
const validateStr = (str) => {
let result = '';
if (typeof str !== 'string') throw 'Parameter is not a string!';
if (str.length >= 10) throw 'Phone is incorrect!';
if (str[0] === '7') result = '+' + str;
return str;
}