# Select >> Use Cases ||20 ```js script import { html } from '@mdjs/mdjs-preview'; import '@lion/select/define'; ``` ## Pre-select You can preselect an option by setting the property modelValue. ```js preview-story export const preSelect = () => html` `; ``` ## Disabled You can disable an option by adding the `disabled` attribute to an option. ```js preview-story export const disabledOption = () => html` `; ``` Or by setting the `disabled` attribute on the entire `lion-select` field. ```js preview-story export const disabledSelect = () => html` `; ```