func pickerView(_ pickerView: UIPickerView, didSelectRow row: Int, inComponent component: Int) {
if pickerView.tag == 1 {
constructionYear.text = answerYears[row]
} else if pickerView.tag == 0 {
contractYear.text = answerYears[row]
}
}