Dropdown - resets to placeholder label on out of focus

I have a dropdown in my page which is set to required and I have a placeholder for it. Every time I choose a value and move the cursor out it is refreshing and getting back to placeholder label. I have provided my code below. Please advise.

a!dropdownField(
  label: "Department",
  labelPosition: "ABOVE",
  helptooltip: "",
  placeholderlabel: "--- Choose your Department ---",
  choicelabels: {
    "IT",
    "Office"
  },
  choicevalues: {
    "IT",
    "Office"
  },               
  saveInto: ri!Order.department,
  required: true,
  validations: {}
)

  Discussion posts and replies are publicly visible