public void convertBirthDay() {
try {
SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
Date date = dateFormat.parse(birthDay);
birthDay = dateFormat.format(date);
} catch (Exception e) {
// TODO: handle exception
}
}