Here is the code
<form method="get" name="form_delivery">
Please select country for delivery<br>
<select name="deliverymethod">
<option value="0" selected="selected">Select country / region</option>
<option value="1">UK (incl. Northern Ireland)</option>
<option value="8">Australia</option>
<option value="9">New Zealand</option>
</select>
</form>
I need to identify the text "Please select country for delivery" and wrap it around the container like a "span" and replace the wrapped text
<form method="get" name="form_delivery">
<span>Please select country for delivery</span><br>
This code is generated by an automated server, I only have access to HTML Template hence Jquery is the only option for making modifications on the fly.
Any Idea's?