Hi,
I don't this will full fill your requirement, but tried this.
you can use javascript to change text of div tag. Here I am giving some code to use.
Code:
<script type="text/javascript">
function display(id)
{
if(id==1)
{
document.getElementById('div1').innerHTML = 'your required text';
}
}
</script>
<img src="" onclick="display(1);" />>br/>
<div id="div1">
default text
</div>
I think this will helps you.
http://www.codedefiner.com