function fn_selezione_quantita(id){
	var aux=document.getElementById(id);
	var value=aux.options[aux.selectedIndex].text;
	if(value=="-")
		value='0';
	value=parseInt(value);
	return value;
}
function fn_somma_quantita(id,id_amount){
	totale_uomo=fn_selezione_quantita('option_'+id+'_u');
	totale_donna=fn_selezione_quantita('option_'+id+'_d');
	var input=document.getElementById(id_amount);
	input.value=totale_uomo+totale_donna;
}
String.prototype.str_replace = function(src, dst)
{
	return this.toString().split(src).join(dst);
}
