// DOB auto-format TT.MM.JJJJ
document.getElementById('aptDob').addEventListener('input', function(e){
let v = this.value.replace(/[^\d]/g, '');
if (v.length >= 2) v = v.slice(0,2) + '.' + v.slice(2);
if (v.length >= 5) v = v.slice(0,5) + '.' + v.slice(5);
if (v.length > 10) v = v.slice(0,10);
this.value = v;
});