The brute force way:
/'[^']*',\s*'[^']*',\s*'[^']*',\s*'([^']*)'/
This is a quote, followed by any number of non-quotes, then another quote, a comma, and some optional whitespace. All that is repeated four times with () around the fourth value to capture it. This may not work if the values are allowed to have quotes in them.
As Cameron pointed out, you can avoid the repetition using:
/(?:'[^']*',\s*){3}'([^']*)'/
The ?: tells the regexp parser not to capture the stuff inside the brackets.
Might be easier to split the list up using split with the comma as the delimiter, and then take the fourth element. Of course, if you can have commas inside the values, that may not work.