Validate application input

You are working on a globalized web application. You need to parse a text field where the user enters an amount of money. Which method do you use?

decimal.TryParse(value, ServerCulture);
int.TryParse(value, NumberStyles.Currency, UICulture);
decimal.TryParse(value)
decimal.TryParse(value, NumberStyles.Currency, UICulture);