I'm pretty sure all this is doing is making sure you can't select anything with a "-" in it. If this is the only select item that has a "-" in it, it will work, but I don't think this is doing what you want.
I've not tested it extensively, but basically, if you want to make sure a particular item is not select, you could do something like:
/^(?!This is the default choice)$/
Pretty sure this accomplishes what you are looking for. Basically, it makes sure the selected choice can not be "This is the default choice". Something like that.