# Update field options based on previous selection

## Overview

In this example, the options in Dropdown B will be updated dynamically based on what the user selects as the value for Dropdown A. Dropdown A's options will be `Positive` and `Negative`, and Dropdown B will display positive or negative number options accordingly.

## Rule Logic

This rule should run when the value of Dropdown A is changed and when the step that Dropdown B is on is loaded.

```
if (DropdownA.value === 'Positive') DropdownB.options = ['1', '2', '3'];
else DropdownB.options = ['-1', '-2', '-3'];
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.feathery.io/platform/build-forms/advanced-logic/examples/update-field-options-based-on-previous-selection.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
