function nomCapitaineValid(adrr){
  var reg= /^([A-Za-z0-9. +-])+$/;
  if(reg.test(adrr)==true) return true ;
  else return false;
}
