I need to run a jquery function if a certain dropdown option is selected.
option 1
You need to use change function
change
$('select[name=dropdown]').change(function() { alert($(this).val()); });