I found the javascript myself, its functioning, i will put it so that if someone faces the same problem doesn't take him forever to make it.
THE JAVASCRIPT
:
javascript Code:
<script type="text/javascript">
function left()
{
var model=document.getElementById('model');
var model2=document.getElementById('model2');
while (model != '')
{
model.options[model.length]=model2.options[model2.selectedIndex];
}
}
function right()
{
var model=document.getElementById('model');
var model2=document.getElementById('model2');
while (model2 != '')
{
model2.options[model2.length]=model.options[model.selectedIndex];
}
}
</script>
THE DROPDOWN LIST(BOXES):