Laravel.io
<?=
                $form->field($product, 'autoType')->dropDownList($product->allAutoTypes, [
                    'prompt' => '--Выбрать--',
                    'onchange' => "autoTypeAddiction(this);",
                    'data-productCheck' => 'true',
                    'disabled' => $order->isDisabled('autoType')
                ])
                ?>
                <?=
                $form->field($product, 'autoCategory')->dropDownList($product->allAutoCategories, [
                    'prompt' => '--Выбрать--',
                    'options' => $product->getAutoCategoriesOptions(),
                    'data-productCheck' => 'true',
                    'disabled' => $order->isDisabled('autoCategory'),

                ])
                ?>

Please note that all pasted data is publicly available.