How can I go about dynamically deleting an option from a drop down (select) box? The value will need to be retrieved and then deleted manually.
i.e.
    [DROP DOWN BOX]
    Apples
    Oranges
    Pears
    Kiwis
    Mangos
    Strawberries
var option_to_delete = "Pears"
Some code to dynamically search through the select box options for "Pears", and if detected, remove it.
Expected result:
    [DROP DOWN BOX]
        Apples
        Oranges
        Kiwis
        Mangos
        Strawberries
No jQuery libaries please.