select <select> by name

select <select> by name

i need to remove some options from a <select> but i need to get it by name


so i have
<select name="imageList">
<option>test1</option>
<option>test2</option>
<option>test3</option>
<option>test4</option>
<option>test5</option>
<option>test6</option>


i know i need to use the .removeOption("test4"); to remove it but i dont know what to use so it selects the imageList <select>


Thanks