function updatePrice(fieldname, pageid, type, step, typetext){
	if ($('#pricebox')){
		
		var parameters = $('#hs_halbeshop_configurator_form').serializeArray();
		var paramString = '->';
		for (var i=0;i<parameters.length; i++){
			if (parameters[i].name == 'tx_hshalbeshop[action]'){
				parameters[i].value = '';
			}
			paramString += parameters[i].name + ' - ' + parameters[i].value + '\n';
		}
		/*if (fieldname == 'stripupdate'){
			parameters[parameters.length] = { 'name': 'tx_hshalbeshop[tx_hshalbeshop_model_selection_product][def_product_uid]', 'value' : ''};
		}*/
		parameters[parameters.length] = { 'name': 'tx_hshalbeshop[typetext]', 'value' : typetext};
		//alert(paramString);
		$('#pricebox').load('index.php?id=' + pageid + '&no_cache=1&tx_hshalbeshop[step]='+step+' #priceboxcontent', parameters);
	}

}
	
