Get Drop Down List From Zoho CRM with matching condition

Get Drop Down List From Zoho CRM with matching condition

Getting this option value based on matching condition from zoho crm account records

Some thing like this

<select>
<option value="account_id1">account_name</option>
<option value="account_id2">account_name</option>
<option value="account_id3">account_name</option>
</select>

Here my code 

getSupplierRecords = zoho.crm.getRecords("Accounts");
for each  getSupplierRecord in getSupplierRecords
{
if(getSupplierRecord.get("Tipo de Entidade") == "Fornecedor")
{
input.Select_Supplier:ui.add(getSupplierRecord.get("Account Name"));
}
}